function startVmPopup(idVirtualMachine){ try { showProgress(); $.ajax({ type: "POST", url: "./htmlAsync/virtualmachinesStartEdit.php", data: { action: "startVmPopup", idVirtualMachine: idVirtualMachine }, success: function (data) { $("#outputPopup").html(""); $("#contentPopup").html(data); if($("#loadStatus").val() === '1') { setPopupSize(); var minDate = $("#minDate").val(); var endDate = $("#endDate").val(); var maxDate = $("#maxDate").val(); var minDateEnd = $("#minDateEnd").val(); var maxDateEnd = $("#maxDateEnd").val(); var maxRunTime = $("#maxRunTime").val(); makeDatapicker(minDate, endDate, maxDate, maxRunTime); makeDatapickerEnd(minDateEnd, maxDateEnd); } else { window.location.href = "./loginuser"; } hideProgress(); }, error: function () { //$("#output").html('
Wystąpił nieoczekiwany problem
'); hideProgress(); }, dataType: 'text' }); } catch (e) { hideProgress(); alert(e); } }